home *** CD-ROM | disk | FTP | other *** search
- /*---------------------------------------------------------------
-
- IPluginDrawIntf.h
-
- Interface for drawing in the screen.
-
- ---------------------------------------------------------------*/
-
- #ifndef IPluginDrawIntf_H
- #define IPluginDrawIntf_H
-
-
- const unsigned long IPluginDraw_ID = 'PIdw';
-
- class IPluginDrawIntf
- {
- public:
- virtual void DrawFrame() = 0; // called each idle for drawing
- virtual void Initialize() = 0; // called when window is opened
- virtual void SetDrawingRect( Rect inRect ) = 0; // called when window is opened
- virtual void Terminate() = 0; // called when window is close
- };
-
- #endif